OrderedSet Constructor (Comparison)

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Creates a new OrderedSet. The passed delegate will be used to compare items in this set.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public OrderedSet(
	Comparison<T> comparison
)
Visual Basic (Declaration)
Public Sub New ( _
	comparison As Comparison(Of T) _
)
Visual C++
public:
OrderedSet (
	Comparison<T>^ comparison
)

Parameters

comparison
Comparison<(Of <T>)>
A delegate to a method that will be used to compare items.

See Also